From: Dave Love Date: Sat, 9 Nov 2002 12:56:04 +0000 (+0000) Subject: (quoted-insert): Bind translation-table-for-input, not X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~54621 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=c2f516353a3613e33f76ffb1875f0894a5c2ba18;p=emacs.git (quoted-insert): Bind translation-table-for-input, not keyboard-translate-table. --- diff --git a/lisp/simple.el b/lisp/simple.el index 12abbe82bc1..bff80ce6625 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -318,7 +318,7 @@ In binary overwrite mode, this function does overwrite, and octal digits are interpreted as a character code. This is intended to be useful for editing binary files." (interactive "*p") - (let* ((char (let (keyboard-translate-table) + (let* ((char (let (translation-table-for-input) (if (or (not overwrite-mode) (eq overwrite-mode 'overwrite-mode-binary)) (read-quoted-char)